home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / COMPILER / SATHER / !Sather / Library / IO / sa / err next >
Text File  |  1996-04-09  |  1KB  |  30 lines

  1. ---------------------------> Sather 1.1 source file <--------------------------
  2. -- Rewritten by Ari Juhani Huttunen (Ari.Huttunen@hut.fi), 1994              --
  3. -- Copyright (C) International Computer Science Institute, 1994.  COPYRIGHT  --
  4. -- NOTICE: This code is provided "AS IS" WITHOUT ANY WARRANTY and is subject --
  5. -- to the terms of the SATHER LIBRARY GENERAL PUBLIC LICENSE contained in    --
  6. -- the file "Doc/License" of the Sather distribution.  The license is also   --
  7. -- available from ICSI, 1947 Center St., Suite 600, Berkeley CA 94704, USA.  --
  8. --------> Please email comments to "sather-bugs@icsi.berkeley.edu". <----------
  9.  
  10. -- err.sa: Output on stderr.
  11. -------------------------------------------------------------------
  12. class ERR < $OSTREAM is
  13.     -- Direct access to stderr.
  14.  
  15.     create:SAME is return self; end;
  16.     
  17.     plus(s:$STR):SAME is 
  18.     -- Print `s' on stderr and return self.
  19.     FILE::stderr.plus(s);
  20.     return self;
  21.     end;
  22.     
  23.     plus(s:$STR) is 
  24.     -- Print `s' on stderr.
  25.     FILE::stderr.plus(s);
  26.     end;
  27.  
  28. end; -- class ERR
  29.  
  30.